home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #2 / Ham Radio 2000 - Volume 2.iso / HAMV2 / TCP_IP / TNOS230S / REJECT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-06  |  601 b   |  18 lines

  1. #ifndef _REJECT_H
  2. #define _REJECT_H
  3.  
  4.  
  5. #define REJ_NO        0    /* message didn't match any entry in reject.dat */
  6. #define REJ_REJECT    1    /* message is to be rejected. For directly received
  7.                  * SMTP messages, it gets marked as deleted */
  8. #define REJ_HOLD    2    /* hold this message */
  9. #define REJ_LOCALHOLD    3    /* hold this message, if generated locally
  10.                  * only in affect in dosend(), if not a BBS
  11.                  * or in smtp server, if address@ourhostname */
  12. #define REJ_DEFER    4    /* no affect in dosend()
  13.                  * in xfwd'ing, acts as REJ_REJECT */
  14. #define REJ_ACCEPT    0    /* accept this message */
  15.  
  16.  
  17. #endif
  18.